home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / machine.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  3KB  |  74 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: machine.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer  
  8. // File Creation Date: 10/28/1996  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. This file contains macros used to set machine specific flags.
  32. It was developed to make porting code easier by centralizing
  33. all the machine dependent flags.
  34. */
  35. // ----------------------------------------------------------- //   
  36. #ifndef __MACHINE_HPP
  37. #define __MACHINE_HPP
  38.  
  39. // Intel x86 family (8088, 286, 386, 486, Pentium) (Littel-Endian)
  40. // ===============================================================
  41. // #ifndef __X86__
  42. // #define __X86__
  43. // #endif  
  44.  
  45. // Hewlett-Packard's PA-RISC processor (Big-Endian)
  46. // ===============================================================
  47. // #ifndef __PA_RISC__
  48. // #define __PA_RISC__
  49. // #endif  
  50.  
  51. // Sun's SuperSPARC processor (Big-Endian)
  52. // ===============================================================
  53. // #ifndef __SuperSPARC__
  54. // #define __SuperSPARC__
  55. // #endif 
  56.  
  57. // Silicon Graphics MIPS processor (Bi-Endian)
  58. // ===============================================================
  59. // #ifndef __SGI_MIPS__
  60. // #define __SGI_MIPS__
  61. // #endif 
  62.  
  63. // IBM/Motorola PowerPC processors (Bi-Endian)
  64. // ===============================================================
  65. // #ifndef __PowerPC__
  66. // #define __PowerPC__
  67. // #endif 
  68.  
  69. #endif  // __MACHINE_HPP //
  70. // ----------------------------------------------------------- // 
  71. // ------------------------------- //
  72. // --------- End of File --------- //
  73. // ------------------------------- //
  74.